Install ProFTPD
2013/01/25 |
Install ProFTPD to configure FTP server to transfer files.
|
|
[1] | Install ProFTPD |
[root@www ~]#
yum -y install proftpd
[root@www ~]#
vi /etc/proftpd.conf # line 77: change to your hostname ServerName " www.srv.world "
# line 79: change to your email address ServerAdmin xxx@srv.world
# add near line 82 # turn off if IPv6 not needed UseIPv6 off # get access log ExtendedLog /var/log/proftpd/access.log WRITE,READ default # get auth log ExtendedLog /var/log/proftpd/auth.log AUTH auth # line 298: change (not required TLS) TLSRequired off
[root@www ~]#
vi /etc/ftpusers # add users you prohibit to FTP access test
systemctl start proftpd.service [root@www ~]# systemctl enable proftpd.service |